cody - HTMLify profile

cody
4270 Files
636137 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App
reshot-icon-delete-KL8MB62NXD.png
cody/swapnilsparsh/30DaysOfJavaScript/53 - Notes Taking App/reshot-icon-delete-KL8MB62NXD.png
Media file
:root {
--bg: #19172e;
--btn: #9c528b;
--card: #b9929f;
}
* {
font-family: sans-serif;
transition: 0.5s ease;
--bg: #19172e;
--btn: #9c528b;
--card: #b9929f;
}
* {
font-family: sans-serif;
transition: 0.5s ease;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./icon.png" type="image/png" />
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./icon.png" type="image/png" />
const notesContainer = document.getElementById("app");
const addNoteButton = notesContainer.querySelector(".add-note");
let delete_element = false;
getNotes().forEach(note => {
const noteElement = createNoteElement(note.id, note.content);
notesContainer.insertBefore(noteElement, addNoteButton);
});
const addNoteButton = notesContainer.querySelector(".add-note");
let delete_element = false;
getNotes().forEach(note => {
const noteElement = createNoteElement(note.id, note.content);
notesContainer.insertBefore(noteElement, addNoteButton);
});